body {
  font-size: 14px;
  font-family: Microsoft YaHei, Arial, sans-serif, PingFang SC, Helvetica Neue, Helvetica, Hiragino Sans GB;
  color: #333;
}
html,
body {
  min-height: 100%;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
a,
button {
  transition: all 0.4s;
}
a {
  text-decoration: none;
  color: #505050;
}
/* 状态一: 未被访问过的链接 */
a:link {
  text-decoration: none;
  color: #505050;
}
/* 状态二: 已经访问过的链接 */
a:visited {
  text-decoration: none;
  color: #505050;
}
/* 状态三: 鼠标划过(停留)的链接(默认红色) */
a:hover {
  text-decoration: none;
}
/* 状态四: 被点击的链接 */
a:active {
  text-decoration: none;
  color: #505050;
}
#app {
  height: 100%;
}
#app .app-wrapper {
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
#app .app-wrapper .container {
  margin: 0 auto;
}
/*标题样式*/
.head-title {
  margin: 0 auto;
  width: 70%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.head-title .title {
  height: 50px;
  text-align: center;
  color: rgba(0,0,0,0.85);
  font-size: 28px;
  line-height: 150%;
  font-weight: bold;
}
.head-title .desc {
  width: 100%;
  text-align: center;
  line-height: 150%;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.65);
  font-size: 16px;
  display: -webkit-box;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.concat-container {
  background: url("../images/bloc/products/common/concat-bg.jpg") center no-repeat;
  background-size: cover;
  min-height: 460px;
}
.concat-container .head-title .title {
  color: #fff;
}
.concat-container .head-title .desc {
  color: #fff;
}
.concat-container .concat-content {
  padding-bottom: 40px;
}
.concat-container .concat-content .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.concat-container .concat-content .icon-box .icon-item {
  width: 150px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.concat-container .concat-content .icon-box .icon-item a {
  cursor: pointer;
}
.concat-container .concat-content .icon-box .icon-item a img {
  display: block;
  width: 60px;
  height: 60px;
}
.concat-container .concat-content .icon-box .icon-item .text {
  height: 30px;
  line-height: 30px;
  font-size: 16px;
}
.concat-container .concat-content .input-box {
  padding-top: 30px;
}
.concat-container .concat-content .input-box .bin-form-inline .bin-form-item {
  width: 100%;
}
.concat-container .concat-content .input-box .bin-input-large {
  height: 50px;
}
.concat-container .concat-content .input-box .bin-button--large {
  height: 50px;
  width: 190px;
  background: none;
  color: #fff;
}
.concat-container .concat-content .input-box .bin-button:hover,
.concat-container .concat-content .input-box .bin-button:focus {
  border: 1px solid #fff;
}
.concat-container .concat-content .phone-box .phone {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #app .app-wrapper .container {
    width: 95%;
  }
  #app .app-wrapper .swiper-container .swiper-wrap .container .center .title-box .title-content-box .desc {
    display: -webkit-box;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #app .app-wrapper .head-title .title {
    font-size: 23px;
  }
  #app .app-wrapper .concat-container .head-title .title {
    width: 100%;
    font-size: 20px;
    word-break: break-word;
    line-height: 110%;
  }
  #app .app-wrapper .concat-container .head-title .desc {
    margin-top: 20px;
  }
  .concat-container .concat-content .phone-box .phone {
    font-size: 18px;
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  #app .app-wrapper .container {
    width: 750px;
  }
}
@media screen and (min-width: 992px) {
  #app .app-wrapper .container {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  #app .app-wrapper .container {
    width: 1200px;
  }
}

/*返回顶部公共样式*/
.back-top-box {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  background-image: url('/resources/images/icon-top.png');
  background-repeat: no-repeat;
}
